今天是後端的第六篇,將介紹近幾年來熱門關鍵字,像是 AI、大數據以及機械學習等,使用的核心語言:Python。
本篇使用 Python3
,有在追蹤 Python 2.7
的工程師們,應該很清楚,2.7 的支援到 2019/12/31,官方同時宣告兩件事:
Python2.8
。Python3
。因此,請參考以下管道下載使用 Python3
:
Python
主程式安裝完成之後,請下載 Extension
此 Extension 與昨天 Rust
相似,皆是集大成者!提供以下功能:
Pylint
、 Flake8
等)。Python
),相關操作如下。
接著,要建立一套執行 .py
的方式,這邊不使用 tasks.json
,而是有兩個方法可以使用:
使用方式很簡單:
print("Hello Developers")
在終端機中執行 Python 檔案
。
Run Code
。
下方面板會自動跑出執行結果:
$ /usr/local/bin/python3 /samples/python/hello_world.py
Hello Developers
[Running] python -u "/samples/python/hello_developers.py"
Hello Developers
[Done] exited with code=0 in 0.038 seconds
上述能強化 IntelliSense,接著安裝的 Extension,可以使用 AI 幫助 IntelliSense 的關鍵字排序。
這部分建議是自己寫,相關寫法請參考拙作:
使用 Python
語言 Extension,步驟如下:
F1
。Python: Select Linter
。關掉 Linter 的步驟如下:
F1
。Python: Enable Linter
。off
操作的部分,請參見拙作:
更詳細的參數設定,請參考官方文件:連結。
要先下載 Jupyter package
。
# Windows
pip install jupyter
# macOS
pip3 install jupyter
接著建立新的 Jupyter Notebook
,步驟如下:
F1
。Python: Create Blank New Jupyter Notebook
。Jupyter Notebook
。相關 Extension:
今天整理 Python
在開發上可能要注意的事項,不得不說,這幾年來關於 Python
的應用越來越多,所以要在短短一篇包山包海,幾乎是不可能的。
Python 不容小覷。